home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjsbar.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-05  |  629 b   |  24 lines

  1. // Design Time Java Text Box implementation. (HPP)
  2.  
  3. #ifndef _DTJSBAR_HPP
  4. #define _DTJSBAR_HPP
  5.  
  6. #include "dtjcomp.hpp"
  7.                       
  8. class METAEXPORTCLASSDEF DTJScrollBar : public DTJComponent
  9. {
  10.     public:
  11.         DTJScrollBar( const MetaObject * pMetaObj );
  12.         virtual ~DTJScrollBar();
  13.  
  14.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  15.                    ostream& src,
  16.                    MMCodeGenerationParms& pGenParms );
  17. };
  18.  
  19. // needed for mdreader
  20. typedef DTJScrollBar DTjava__dot__awt__dot__Scrollbar__dot__102;
  21. typedef WScrollBar java__dot__awt__dot__Scrollbar__dot__102;
  22.  
  23. #endif // _DTJSBAR_HPP
  24.